From 1b3d4ca66d29796d9ffee2ea1464ed2113a72563 Mon Sep 17 00:00:00 2001 From: "kaf24@scramble.cl.cam.ac.uk" Date: Sun, 27 Jun 2004 22:35:00 +0000 Subject: [PATCH] bitkeeper revision 1.1020.1.1 (40df4b94lJE4UbrmICQf_fatdqMCOw) Quieten down console connections. Remove telnet control sequence. --- tools/xenmgr/lib/server/console.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tools/xenmgr/lib/server/console.py b/tools/xenmgr/lib/server/console.py index 6db905dc0b..ad5ff59abd 100755 --- a/tools/xenmgr/lib/server/console.py +++ b/tools/xenmgr/lib/server/console.py @@ -36,9 +36,11 @@ class ConsoleProtocol(protocol.Protocol): self.loseConnection() return else: - self.transport.write("Connected to console %d on domain %d\n" - % (self.idx, self.controller.dom)) - self.setTelnetTransmitBinary() + # KAF: A nice quiet successful connect. Don't bother with telnet + # control sequence -- telnet is not the appropriate protocol here. + #self.transport.write("Connected to console %d on domain %d\n" + # % (self.idx, self.controller.dom)) + #self.setTelnetTransmitBinary() eserver.inject('xend.console.connect', [self.idx, self.addr[0], self.addr[1]]) -- 2.30.2